home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 5
/
Gold Medal Software - Volume 5 (Gold Medal) (1995).iso
/
prog
/
rukc110.arj
/
BORLAND.ZIP
/
INSTALLB.BAT
< prev
next >
Wrap
DOS Batch File
|
1994-10-21
|
1KB
|
32 lines
@echo off
REM use /B for mono video systems, as in INSTALL /b
cls
echo RUCKUS 1.1 Install for Borland C/C++ Compilers
echo.
echo To install RUCKUS, the library files must first be extracted and built.
echo Two install runs are made: one each for RUCKUS-DAC and RUCKUS-MIDI.
echo These files are for large- or huge-model use only, and only needed by
echo Borland C/C++ compilers when using these memory models. For medium-
echo model use, the standard library files should be used. This patch
echo makes use of the RTL function farmalloc()/farfree().
echo.
echo The library files created are similar to the standard files except
echo that the filename end with an L: RUCKDAC.LIB is RUCKDACL.LIB, and
echo RUCKMIDI.LIB is RUCKMIDL.LIB.
echo.
pause
instruck RUCKDACL %1
if errorlevel==1 goto nogo
instruck RUCKMIDL %1
if errorlevel==1 goto nogo
echo.
echo Installation was a success. Refer to the documentation under Appendix C.
echo for further installation procedures."
echo.
goto endit
:nogo
echo.
echo Installation failed to complete.
:endit